* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #333;
    color: #000;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;  

}

.container {
    width: 80%;
    height: 100%;
    /* CSS Smooth Scroll*/
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top:0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.7);
}

.navbar ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.navbar ul li {
    margin: 0 1rem;
    padding: 1rem;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #f4f4f4;
}

.navbar ul li a:hover {
    color: skyblue;
}

section {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    scroll-snap-align: center;
}

section h1 {
    font-size: 4rem;
}

section h1 p {
    font-size: 1.5rem;
    text-align: left;
    
}

section h2, p {
    text-align: left;
    padding: 0px 10px;
    margin: 0px 15px;
}

/* section p {
    text-align: justify;
    padding: 0px 10px;
    margin: 0px 15px;
} */

/* Section Images */
section#home {
    /* background: url('https://source.unsplash.com/bZZp1PmHI0E/1600x900') no-repeat center center/cover;; */
    background-color: #fff;
  }
  
  section#about {
    /* background: url('https://source.unsplash.com/VRxo0yY-gyM/1600x900') no-repeat center center/cover;; */
    background-color: rgba(255, 244, 220, 0.6);
  }
  
  section#services {
    /* background: url('https://source.unsplash.com/K2tdx2mFDHc/1600x900') no-repeat center center/cover;; */
    background-color: rgba(235, 240, 216, 0.7);
  }
  
  section#contact {
    /* background: url('https://source.unsplash.com/2aAHlfDOhJM/1600x900') no-repeat center center/cover; */
    background-color: #fff;
  }
  